home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 September / DPPCPRO0999.ISO / Macromed / Flash2 / CD Extras / WebTools / JBS.DXR / 00156_PIC_0.ls < prev    next >
Encoding:
Text File  |  1997-04-13  |  619 b   |  21 lines

  1. on mouseDown
  2.   CheckThis(0, clickOn())
  3. end
  4.  
  5. on CheckThis ObjRef, me
  6.   global FileTypeFolder, FileTypeExtension
  7.   set FileTypeFolder to "Picts"
  8.   set FileTypeExtension to "pic"
  9.   selSaveFileType(FileTypeExtension, 1)
  10.   set the puppet of sprite me to 1
  11.   set the castNum of sprite (me - 1) to the number of cast "JPG_0"
  12.   set the castNum of sprite me to the number of cast "PIC_1"
  13.   set the castNum of sprite (me + 1) to the number of cast "BMP_0"
  14.   set the castNum of sprite (me + 2) to the number of cast "GIF_0"
  15.   updateStage()
  16. end
  17.  
  18. on myHelp
  19.   return "Click if you want WebTools to install graphics as PIC files"
  20. end
  21.